From 681001bf697be06a4801e6ef1083fbf6d4a1b8ec Mon Sep 17 00:00:00 2001 From: Jeremy Bryant Date: Tue, 12 Mar 2024 22:34:03 +0000 Subject: [PATCH] ; Change defcustom types to natnum * which-key.el (which-key-frame-max-width, which-key-frame-max-height): Change defcustom type integer to natnum. --- which-key.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/which-key.el b/which-key.el index 29e0b5a277c..2f2c2804f55 100644 --- a/which-key.el +++ b/which-key.el @@ -326,12 +326,12 @@ a percentage out of the frame's height." (defcustom which-key-frame-max-width 60 "Maximum width of which-key popup when type is frame." - :type 'integer + :type 'natnum :version "1.0") (defcustom which-key-frame-max-height 20 "Maximum height of which-key popup when type is frame." - :type 'integer + :type 'natnum :version "1.0") (defcustom which-key-allow-imprecise-window-fit (not (display-graphic-p)) -- 2.30.2